home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / hsbd100 / usage.txt < prev   
Text File  |  1999-01-31  |  3KB  |  124 lines

  1. The summary of the transitions effects :
  2.  
  3. - Bigger : Display image from small to big 
  4.      Direction : Center, Up, Down, Left, Right, Up_Left, Up_Right,
  5.                  Down_Left, Down_Right
  6.      Size : No
  7.  
  8. - BMove : Moving image
  9.      Direction : Up, Down, Left, Right
  10.      Size : No
  11.         
  12. - CloseEffect : Close image from two side
  13.      Direction : Vertical, Horizontal, Vertical_Out, Horizontal_Out
  14.      Size : No
  15.  
  16. - CrossUpDown : Cross image Up to Down
  17.      Direction : No
  18.      Size : No
  19.  
  20. - CrossLeftRight : Cross image Left to Right
  21.      Direction : No
  22.      Size : No
  23.  
  24. - Fall : Rain fall Effect
  25.      Direction : Up, Down, Left, Right
  26.      Size : No
  27.  
  28. - Line2Pass : Line display, two pass
  29.      Direction : Up, Down, Left, Right
  30.      Size : No
  31.  
  32. - LineCross : Line cross from two side
  33.      Direction : Up_Down, Left_Right
  34.      Size : Yes
  35.  
  36. - RandomBox : Random display image with small box
  37.      Direction : No
  38.      Size : Yes
  39.  
  40. - RandomLine : Random display image with line
  41.      Direction : Vertical, Horizontal
  42.      Size : No
  43.  
  44. - Rectangle : Display image with rectangle
  45.      Direction : Center, Up_Left, Up_Right, Down_Left, Down_Right
  46.      Size : No
  47.  
  48. - Roll : Roll image
  49.      Direction : Up, Down, Left, Right
  50.      Size : No
  51.  
  52. - ShowPage : Showing the current image
  53.      Direction : No
  54.      Size : No
  55.  
  56. - TwisterBox : Image display with twister (box) style
  57.      Direction : In, Out
  58.      Size : Yes
  59.  
  60. - TwisterCircle : Image display with twister (circle) style
  61.      Direction : In, Out
  62.      Size : Yes
  63.  
  64. - TwisterCircleAntiC : TwisterCircle with Anti Clock Wise direction
  65.      Direction : In, Out
  66.      Size : Yes
  67.  
  68. - VenetialBlind : Venetial Blind
  69.      Direction : Up, Down, Left, Right
  70.      Size : Yes
  71.  
  72. Direction value : ( Direct )
  73. CENTER     = 0
  74. UP         = 1
  75. DOWN       = 2
  76. LEFT       = 3
  77. RIGHT      = 4
  78. UP_LEFT    = 5
  79. UP_RIGHT   = 6
  80. DOWN_LEFT  = 7
  81. DOWN_RIGHT = 8
  82. OUT        = 0
  83. IN         = 1
  84. VER        = 0 ( Vertical )
  85. HOR        = 1 ( Horizontal )
  86. VER_OUT    = 2 ( Vertical Out )
  87. HOR_OUT    = 3 ( Horizontal Out )
  88. UP_DOWN    = 0
  89. LEFT_RIGHT = 1
  90.  
  91. Size : ( Size )
  92.      Size is the size of lines or box to be use when displaying 
  93. image.
  94.  
  95. Ohter Important Properties :
  96. AutoResize : True or False
  97.              The Control will automaticaly resize to the size of image
  98.  
  99. Delay      : Integer
  100.              Time delay in second  
  101.  
  102. Picture    : Normal picture format same as picture box
  103.  
  104. Visible    : True or False
  105.              Control is visible or hidden
  106.  
  107. Other Method :
  108. Cls           : Clear the Image in control
  109. ShowAbout     : Display the About Box
  110.  
  111.  
  112. Example :
  113. Loading pictures :
  114. 1. In design time, just set the picture properties.
  115. 2. In run time, use the LoadPicture statement.
  116.    HSBitmapDisplayer1.Picture = LoadPicture("C:\abc\xyz.bmp")
  117.  
  118. Display pictures :
  119. Example :
  120.         HSBitmapDisplayer1.Direct = 1 ( The Direction )
  121.         HSBitmapDisplayer1.Delay = 2  ( Set the Delay )
  122.         HSBitmapDisplayer1.Bigger     ( Call Effect )
  123.      
  124.